home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / GrayCell.m < prev    next >
Encoding:
Text File  |  1996-01-30  |  345 b   |  25 lines

  1. #import <appkit/appkit.h>
  2. #import "GrayCell.h"
  3.  
  4. @implementation GrayCell
  5.  
  6.  
  7. - setDrawGray:(BOOL)dg
  8. {
  9.    drawGray=dg;
  10.    return self;
  11. }
  12.  
  13. - setTextAttributes:textObj
  14. {
  15.    [super setTextAttributes:textObj];
  16.    if (drawGray==TRUE)
  17.       [textObj setTextGray:NX_DKGRAY];
  18.    else
  19.       [textObj setTextGray:NX_BLACK];      
  20.    return textObj;
  21. }
  22.  
  23. @end
  24.  
  25.